projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69b9224
)
(feedmail-deduce-address-list): Avoid add-to-list on local variables.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 6 Jan 2017 02:02:48 +0000
(21:02 -0500)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 6 Jan 2017 02:02:48 +0000
(21:02 -0500)
Author:
* lisp/mail/feedmail.el (feedmail-deduce-address-list):
Avoid add-to-list on local variables.
lisp/mail/feedmail.el
patch
|
blob
|
history
diff --git
a/lisp/mail/feedmail.el
b/lisp/mail/feedmail.el
index eed664d088e2590bd11502d5bda81ace833142ce..1402db4095185b0f7f4d918490b60505d12bfb5a 100644
(file)
--- a/
lisp/mail/feedmail.el
+++ b/
lisp/mail/feedmail.el
@@
-3147,7
+3147,7
@@
been weeded out."
(setq simple-address (substring address-blob (match-beginning 2) (match-end 2)))
(setq address-blob (replace-match "" t t address-blob))
(if (not (member simple-address address-list))
- (
add-to-list 'address-list simple-address
)))
+ (
push simple-address address-list
)))
))
(kill-buffer nil)))
(identity address-list)))